home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7011.txt < prev    next >
Text File  |  1994-04-15  |  231b  |  11 lines

  1. Convert a real value into a longint value by rounding. 
  2. e.g. Round(2.6) = 3
  3.  
  4. Round(v : REAL) : LONGINT;
  5.  
  6. Convert a real value into a longint value by chopping off any decimal part.
  7. e.g.  Trunc(2.6) = 2
  8.  
  9. Trunc(v : REAL) : LONGINT;
  10.  
  11.